← Index
NYTProf Performance Profile   
For starman worker -M FindBin --max-requests 50 --workers 2 --user=kohadev-koha --group kohadev-koha --pid /var/run/koha/kohadev/plack.pid --daemonize --access-log /var/log/koha/kohadev/plack.log --error-log /var/log/koha/kohadev/plack-error.log -E deployment --socket /var/run/koha/kohadev/plack.sock /etc/koha/sites/kohadev/plack.psgi
  Run on Fri Jan 8 14:31:06 2016
Reported on Fri Jan 8 14:33:30 2016

Filename(eval 1128)[/usr/share/perl5/CGI.pm:932]
StatementsExecuted 3 statements in 21µs
Eval Invoked At/usr/share/perl5/CGI.pm line 932
Sibling evals1, 2, 3, 4, 5, 6
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
31156µs92µsCGI::::httpsCGI::https
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1
# spent 92µs (56+36) within CGI::https which was called 3 times, avg 31µs/call: # 3 times (56µs+36µs) by C4::Auth::get_template_and_user at line 406 of C4/Auth.pm, avg 31µs/call
package CGI; sub https {
2115µs444µs my ($self,$parameter) = self_or_CGI(@_);
# spent 44µs making 4 calls to CGI::self_or_CGI, avg 11µs/call
31600ns if ( defined($parameter) ) {
4 $parameter =~ tr/-a-z/_A-Z/;
5 if ( $parameter =~ /^HTTPS(?:_|$)/ ) {
6 return $ENV{$parameter};
7 }
8 return $ENV{"HTTPS_$parameter"};
9 }
10 return wantarray
1115µs ? grep { /^HTTPS(?:_|$)/ } keys %ENV
12 : $ENV{'HTTPS'};
13}
14
15;